home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- *
- * NSSDC/CDF Header file for CDFdump.
- *
- * Version 1.0, 10-Feb-92, ST Systems (STX)
- *
- * Modification history:
- *
- * V1.0 10-Feb-92, J Love Original version.
- *
- ******************************************************************************/
-
- /******************************************************************************
- * Function Prototypes.
- ******************************************************************************/
-
- #if defined(vms) | defined(__MSDOS__)
- void DisplayStats (FILE *);
- void PageInst (char **);
- #endif
-
- #if defined(unix)
- void DisplayStats ();
- void PageInst ();
- #endif
-
- /******************************************************************************
- * Check the status from a malloc call.
- ******************************************************************************/
-
- #define CHECKmalloc(ptr) { \
- if (ptr == NULL) { \
- printf ("Bad malloc.\n"); \
- ExitBAD; \
- } \
- }
-